home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / scim-gtk2-immodule.postrm < prev    next >
Encoding:
Text File  |  2007-03-05  |  609 b   |  28 lines

  1. #!/bin/sh
  2. # postrm script for scim-gtk-immodule
  3. # see: dh_installdeb(1)
  4.  
  5. set -e
  6.  
  7. if [ "$1" = "remove" ]; then
  8.     # Be careful in the postrm script as libgtk2.0-bin (which contains
  9.     # the /usr/sbin/update-gtk-immodules command) can be already removed
  10.     # when this is run.
  11.     if [ -x /usr/sbin/update-gtk-immodules ]; then
  12.         /usr/sbin/update-gtk-immodules
  13.     fi
  14. fi
  15.  
  16. # dh_installdeb will replace this with shell code automatically
  17. # generated by other debhelper scripts.
  18.  
  19. # Automatically added by dh_makeshlibs
  20. if [ "$1" = "remove" ]; then
  21.     ldconfig
  22. fi
  23. # End automatically added section
  24.  
  25.  
  26. exit 0
  27.  
  28.